﻿/* Foto tým na úvodní stránce */

#photo-container {
    width: 100%;
    height: calc(100vh - 64px - 60px - 90px); /* 64px header, 60px footer, 90px rezerva na tlačítko a text */
    display: flex;
    justify-content: center;
    align-items: center;
}

#team-photo {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* Styl zobrazení hráčů týmu na stránce Tým */
.player-container {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.player-photo {
    flex: 0 0 30%;
    padding-right: 30px;
}

.player-info {
    flex: 0 0 70%;
}

.player-photo img {
    max-width: 100%;
    height: auto;
}
.player-photo img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto;
}
/*responzivní úprava pro mobil*/
@media screen and (max-width: 576px) {
    .player-photo img {
        width: 80vw;
        height: 80vw;
        min-width: 140px;
        min-height: 140px;
        max-width: 94vw;
        max-height: 94vw;
    }
}


@media screen and (max-width: 768px) {
    .player-container {
        flex-direction: column;
    }

    .player-photo, .player-info {
        flex: 0 0 100%;
        padding-right: 0;
    }

    .player-info {
        margin-top: 15px;
    }
}
.player-list-photo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: block;
    margin: 0 auto;
}

/* Stejná šířka tlačítek */
.wide-btn {
    min-width: 90px;
    text-align: center;
}
